home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ CoolSwitch Enabled.xpl < prev    next >
Text File  |  2002-04-12  |  1KB  |  48 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Appearance\Interface\Cool Switch (ALT+TAB)"
  5. "NAME"="Cool Switch Disabled"
  6. "VERSION"="1.35"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Disable Cool Switch"
  9. "DESCRIPTION 1"="If you press ALT+TAB, you perform a so called "Cool Switch"."
  10. "DESCRIPTION 2"="If this option is enabled, the current user is no longer able to use Cool Switch."
  11. "DESCRIPTION 3"="Note: It seems this setting has no effect if you are using IE 4.0 and above."
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com/"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"=" "
  16.  
  17.  
  18.  
  19. sPath="HKEY_CURRENT_USER\Control Panel\Desktop\CoolSwitch"
  20.  
  21. Sub Plugin_Initialize 
  22.   i=RegReadValue(sPath)
  23.   if IsEmpty(i)=false then
  24.    If i=0 then Call SetUIElement(1,true) 
  25.   end if  
  26. End Sub
  27.  
  28. Sub Plugin_CheckData(ElementIndex)
  29. End Sub
  30.  
  31. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  32.  b=GetUIElement(1)
  33.  if b=true then
  34.   Call RegWriteValue(sPath,"0",1)
  35.  else
  36.   Call RegWriteValue(sPath,"1",1)
  37.  end if
  38.  
  39.  Restart
  40. End Sub
  41.  
  42.  
  43. Sub Plugin_Terminate 
  44. End Sub
  45.  
  46.  
  47.  
  48.